home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Utilities Experience
/
The Utilities Experience - Volume 1.iso
/
software
/
demos
/
r-z
/
stormc-demo
/
include
/
clib
/
wb_protos.h
< prev
Wrap
C/C++ Source or Header
|
1996-01-02
|
2KB
|
74 lines
#ifndef CLIB_WB_PROTOS_H
#define CLIB_WB_PROTOS_H
/*
** $VER: wb_protos.h 38.4 (31.5.92)
** Includes Release 40.15
**
** C prototypes. For use with 32 bit integers only.
**
** (C) Copyright 1990-1993 Commodore-Amiga, Inc.
** All Rights Reserved
*/
/*--- functions in V36 or higher (Release 2.0) ---*/
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef DOS_DOS_H
#include <dos/dos.h>
#endif
#ifndef WORKBENCH_WORKBENCH_H
#include <workbench/workbench.h>
#endif
#ifndef INTUITION_INTUITION_H
#include <intuition/intuition.h>
#endif
#ifndef UTILITY_TAGITEM_H
#include <utility/tagitem.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
struct AppWindow *AddAppWindowA( unsigned long id, unsigned long userdata,
struct Window *window, struct MsgPort *msgport,
struct TagItem *taglist );
struct AppWindow *AddAppWindow( unsigned long id, unsigned long userdata,
struct Window *window, struct MsgPort *msgport, Tag tag1, ... );
BOOL RemoveAppWindow( struct AppWindow *appWindow );
struct AppIcon *AddAppIconA( unsigned long id, unsigned long userdata,
UBYTE *text, struct MsgPort *msgport, struct FileLock *lock,
struct DiskObject *diskobj, struct TagItem *taglist );
struct AppIcon *AddAppIcon( unsigned long id, unsigned long userdata,
UBYTE *text, struct MsgPort *msgport, struct FileLock *lock,
struct DiskObject *diskobj, Tag tag1, ... );
BOOL RemoveAppIcon( struct AppIcon *appIcon );
struct AppMenuItem *AddAppMenuItemA( unsigned long id, unsigned long userdata,
UBYTE *text, struct MsgPort *msgport, struct TagItem *taglist );
struct AppMenuItem *AddAppMenuItem( unsigned long id, unsigned long userdata,
UBYTE *text, struct MsgPort *msgport, Tag tag1, ... );
BOOL RemoveAppMenuItem( struct AppMenuItem *appMenuItem );
/*--- functions in V39 or higher (Release 3) ---*/
void WBInfo( BPTR lock, STRPTR name, struct Screen *screen );
#ifdef __cplusplus
}
#endif
#ifdef STORMPRAGMAS
#ifndef _INCLUDE_PRAGMA_WB_LIB_H
#include <pragma/wb_lib.h>
#endif
#endif
#endif /* CLIB_WB_PROTOS_H */